DataSource for Entity Framework in WPF
C1.LiveLinq.Indexing.Search Namespace / IIndexScanner<T> Interface / FindBetween Method
Minimum key value to search for.
If true, the result includes items with the minimum key value.
Maximum key value to search for.
If true, the result includes items with the maximum key value.
Optionally specifies the order of the key values to sort the result (C1.LiveLinq.Order.Unordered if sorting is not required).

In This Topic
    FindBetween Method (IIndexScanner<T>)
    In This Topic
    Finds items with key values in the interval between the specified values.
    Syntax
    'Declaration
     
    Function FindBetween( _
       ByVal min As Object, _
       ByVal minInclusive As Boolean, _
       ByVal max As Object, _
       ByVal maxInclusive As Boolean, _
       ByVal order As Order _
    ) As IndexQuery(Of T)
    IndexQuery<T> FindBetween( 
       object min,
       bool minInclusive,
       object max,
       bool maxInclusive,
       Order order
    )

    Parameters

    min
    Minimum key value to search for.
    minInclusive
    If true, the result includes items with the minimum key value.
    max
    Maximum key value to search for.
    maxInclusive
    If true, the result includes items with the maximum key value.
    order
    Optionally specifies the order of the key values to sort the result (C1.LiveLinq.Order.Unordered if sorting is not required).

    Return Value

    An object enumerating all items with key values within the specified limits.
    See Also